Socket
Socket
Sign inDemoInstall

fs-readfile-promise

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fs-readfile-promise

Promise version of fs.readFile


Version published
Weekly downloads
81K
decreased by-2.92%
Maintainers
1
Weekly downloads
 
Created
Source

fs-readfile-promise

NPM version Build Status Build status Coverage Status Dependency Status devDependency Status

Promises/A+ version of fs.readFile

var readFile = require('fs-readfile-promise');

readFile('path/to/file')
.then(buffer => console.log(buffer.toString()))
.catch(err => console.log(err.message));

Based on the principle of modular programming, this module has only one functionality readFile, unlike other promise-based file system modules. If you want to use a bunch of other fs methods in the promises' way, choose other modules such as q-io and fs-promise.

Installation

Use npm.

npm install fs-readfile-promise

API

const readFile = require('fs-readfile-promise');

readFile(filename [, options])

filename: String
options: Object or String (fs.readFile options)
Return: Object (Promise)

When it finish reading the file, it will be fulfilled with an Buffer of the file as its first argument.

When it fails to read the file, it will be rejected with an error as its first argument.

const readFile = require('fs-readfile-promise');

const onFulfilled = buffer => console.log(buffer.toString());
const onRejected = err => console.log('Cannot read the file.');

readFile('path/to/file').then(onFulfilled, onRejected);

License

Copyright (c) 2014 - 2015 Shinnosuke Watanabe

Licensed under the MIT License.

Keywords

FAQs

Package last updated on 07 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc